def print_param(wert1, wert2, wert3):
    print(wert1, wert2, wert3)

a = "eins"
b = "zwei"
c = "drei"

print_param(a, b, c)
print_param(wert3=c, wert2=b, wert1=a)

print_param(a, wert3=c, wert2=b)